home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Musique / Quod Libet / quodlibet-3.3.0-installer.exe / bin / StringIO.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2014-12-31  |  11KB  |  331 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. """File-like objects that read from or write to a string buffer.
  5.  
  6. This implements (nearly) all stdio methods.
  7.  
  8. f = StringIO()      # ready for writing
  9. f = StringIO(buf)   # ready for reading
  10. f.close()           # explicitly release resources held
  11. flag = f.isatty()   # always false
  12. pos = f.tell()      # get current position
  13. f.seek(pos)         # set current position
  14. f.seek(pos, mode)   # mode 0: absolute; 1: relative; 2: relative to EOF
  15. buf = f.read()      # read until EOF
  16. buf = f.read(n)     # read up to n bytes
  17. buf = f.readline()  # read until end of line ('\\n') or EOF
  18. list = f.readlines()# list of f.readline() results until EOF
  19. f.truncate([size])  # truncate file at to at most size (default: current pos)
  20. f.write(buf)        # write at current position
  21. f.writelines(list)  # for line in list: f.write(line)
  22. f.getvalue()        # return whole file's contents as a string
  23.  
  24. Notes:
  25. - Using a real file is often faster (but less convenient).
  26. - There's also a much faster implementation in C, called cStringIO, but
  27.   it's not subclassable.
  28. - fileno() is left unimplemented so that code which uses it triggers
  29.   an exception early.
  30. - Seeking far beyond EOF and then writing will insert real null
  31.   bytes that occupy space in the buffer.
  32. - There's a simple test set (see end of this file).
  33. """
  34.  
  35. try:
  36.     from errno import EINVAL
  37. except ImportError:
  38.     EINVAL = 22
  39.  
  40. __all__ = [
  41.     'StringIO']
  42.  
  43. def _complain_ifclosed(closed):
  44.     if closed:
  45.         raise ValueError, 'I/O operation on closed file'
  46.  
  47.  
  48. class StringIO:
  49.     '''class StringIO([buffer])
  50.  
  51.     When a StringIO object is created, it can be initialized to an existing
  52.     string by passing the string to the constructor. If no string is given,
  53.     the StringIO will start empty.
  54.  
  55.     The StringIO object can accept either Unicode or 8-bit strings, but
  56.     mixing the two may take some care. If both are used, 8-bit strings that
  57.     cannot be interpreted as 7-bit ASCII (that use the 8th bit) will cause
  58.     a UnicodeError to be raised when getvalue() is called.
  59.     '''
  60.     
  61.     def __init__(self, buf = ''):
  62.         if not isinstance(buf, basestring):
  63.             buf = str(buf)
  64.         self.buf = buf
  65.         self.len = len(buf)
  66.         self.buflist = []
  67.         self.pos = 0
  68.         self.closed = False
  69.         self.softspace = 0
  70.  
  71.     
  72.     def __iter__(self):
  73.         return self
  74.  
  75.     
  76.     def next(self):
  77.         '''A file object is its own iterator, for example iter(f) returns f
  78.         (unless f is closed). When a file is used as an iterator, typically
  79.         in a for loop (for example, for line in f: print line), the next()
  80.         method is called repeatedly. This method returns the next input line,
  81.         or raises StopIteration when EOF is hit.
  82.         '''
  83.         _complain_ifclosed(self.closed)
  84.         r = self.readline()
  85.         if not r:
  86.             raise StopIteration
  87.         return r
  88.  
  89.     
  90.     def close(self):
  91.         '''Free the memory buffer.
  92.         '''
  93.         if not self.closed:
  94.             self.closed = True
  95.             del self.buf
  96.             del self.pos
  97.  
  98.     
  99.     def isatty(self):
  100.         '''Returns False because StringIO objects are not connected to a
  101.         tty-like device.
  102.         '''
  103.         _complain_ifclosed(self.closed)
  104.         return False
  105.  
  106.     
  107.     def seek(self, pos, mode = 0):
  108.         """Set the file's current position.
  109.  
  110.         The mode argument is optional and defaults to 0 (absolute file
  111.         positioning); other values are 1 (seek relative to the current
  112.         position) and 2 (seek relative to the file's end).
  113.  
  114.         There is no return value.
  115.         """
  116.         _complain_ifclosed(self.closed)
  117.         if self.buflist:
  118.             self.buf += ''.join(self.buflist)
  119.             self.buflist = []
  120.         if mode == 1:
  121.             pos += self.pos
  122.         elif mode == 2:
  123.             pos += self.len
  124.         self.pos = max(0, pos)
  125.  
  126.     
  127.     def tell(self):
  128.         """Return the file's current position."""
  129.         _complain_ifclosed(self.closed)
  130.         return self.pos
  131.  
  132.     
  133.     def read(self, n = -1):
  134.         '''Read at most size bytes from the file
  135.         (less if the read hits EOF before obtaining size bytes).
  136.  
  137.         If the size argument is negative or omitted, read all data until EOF
  138.         is reached. The bytes are returned as a string object. An empty
  139.         string is returned when EOF is encountered immediately.
  140.         '''
  141.         _complain_ifclosed(self.closed)
  142.         if self.buflist:
  143.             self.buf += ''.join(self.buflist)
  144.             self.buflist = []
  145.         r = self.buf[self.pos:newpos]
  146.         self.pos = newpos
  147.         return r
  148.  
  149.     
  150.     def readline(self, length = None):
  151.         """Read one entire line from the file.
  152.  
  153.         A trailing newline character is kept in the string (but may be absent
  154.         when a file ends with an incomplete line). If the size argument is
  155.         present and non-negative, it is a maximum byte count (including the
  156.         trailing newline) and an incomplete line may be returned.
  157.  
  158.         An empty string is returned only when EOF is encountered immediately.
  159.  
  160.         Note: Unlike stdio's fgets(), the returned string contains null
  161.         characters ('\\0') if they occurred in the input.
  162.         """
  163.         _complain_ifclosed(self.closed)
  164.         if self.buflist:
  165.             self.buf += ''.join(self.buflist)
  166.             self.buflist = []
  167.         i = self.buf.find('\n', self.pos)
  168.         if length is not None and length >= 0 and self.pos + length < newpos:
  169.             newpos = self.pos + length
  170.         
  171.         r = self.buf[self.pos:newpos]
  172.         self.pos = newpos
  173.         return r
  174.  
  175.     
  176.     def readlines(self, sizehint = 0):
  177.         '''Read until EOF using readline() and return a list containing the
  178.         lines thus read.
  179.  
  180.         If the optional sizehint argument is present, instead of reading up
  181.         to EOF, whole lines totalling approximately sizehint bytes (or more
  182.         to accommodate a final whole line).
  183.         '''
  184.         total = 0
  185.         lines = []
  186.         line = self.readline()
  187.         while line:
  188.             lines.append(line)
  189.             total += len(line)
  190.             if sizehint < sizehint:
  191.                 pass
  192.             elif sizehint <= total:
  193.                 break
  194.             line = self.readline()
  195.         return lines
  196.  
  197.     
  198.     def truncate(self, size = None):
  199.         """Truncate the file's size.
  200.  
  201.         If the optional size argument is present, the file is truncated to
  202.         (at most) that size. The size defaults to the current position.
  203.         The current file position is not changed unless the position
  204.         is beyond the new file size.
  205.  
  206.         If the specified size exceeds the file's current size, the
  207.         file remains unchanged.
  208.         """
  209.         _complain_ifclosed(self.closed)
  210.         if size is None:
  211.             size = self.pos
  212.         elif size < 0:
  213.             raise IOError(EINVAL, 'Negative size not allowed')
  214.         elif size < self.pos:
  215.             self.pos = size
  216.         self.buf = self.getvalue()[:size]
  217.         self.len = size
  218.  
  219.     
  220.     def write(self, s):
  221.         '''Write a string to the file.
  222.  
  223.         There is no return value.
  224.         '''
  225.         _complain_ifclosed(self.closed)
  226.         if not s:
  227.             return None
  228.         if not None(s, basestring):
  229.             s = str(s)
  230.         spos = self.pos
  231.         slen = self.len
  232.         if spos == slen:
  233.             self.buflist.append(s)
  234.             self.len = self.pos = spos + len(s)
  235.             return None
  236.         if None > slen:
  237.             self.buflist.append('\x00' * (spos - slen))
  238.             slen = spos
  239.         newpos = spos + len(s)
  240.         self.len = slen
  241.         self.pos = newpos
  242.  
  243.     
  244.     def writelines(self, iterable):
  245.         '''Write a sequence of strings to the file. The sequence can be any
  246.         iterable object producing strings, typically a list of strings. There
  247.         is no return value.
  248.  
  249.         (The name is intended to match readlines(); writelines() does not add
  250.         line separators.)
  251.         '''
  252.         write = self.write
  253.         for line in iterable:
  254.             write(line)
  255.         
  256.  
  257.     
  258.     def flush(self):
  259.         '''Flush the internal buffer
  260.         '''
  261.         _complain_ifclosed(self.closed)
  262.  
  263.     
  264.     def getvalue(self):
  265.         '''
  266.         Retrieve the entire contents of the "file" at any time before
  267.         the StringIO object\'s close() method is called.
  268.  
  269.         The StringIO object can accept either Unicode or 8-bit strings,
  270.         but mixing the two may take some care. If both are used, 8-bit
  271.         strings that cannot be interpreted as 7-bit ASCII (that use the
  272.         8th bit) will cause a UnicodeError to be raised when getvalue()
  273.         is called.
  274.         '''
  275.         _complain_ifclosed(self.closed)
  276.         if self.buflist:
  277.             self.buf += ''.join(self.buflist)
  278.             self.buflist = []
  279.         return self.buf
  280.  
  281.  
  282.  
  283. def test():
  284.     import sys as sys
  285.     if sys.argv[1:]:
  286.         file = sys.argv[1]
  287.     else:
  288.         file = '/etc/passwd'
  289.     lines = open(file, 'r').readlines()
  290.     text = open(file, 'r').read()
  291.     f = StringIO()
  292.     for line in lines[:-2]:
  293.         f.write(line)
  294.     
  295.     f.writelines(lines[-2:])
  296.     if f.getvalue() != text:
  297.         raise RuntimeError, 'write failed'
  298.     length = f.tell()
  299.     print 'File length =', length
  300.     f.seek(len(lines[0]))
  301.     f.write(lines[1])
  302.     f.seek(0)
  303.     print 'First line =', repr(f.readline())
  304.     print 'Position =', f.tell()
  305.     line = f.readline()
  306.     print 'Second line =', repr(line)
  307.     f.seek(-len(line), 1)
  308.     line2 = f.read(len(line))
  309.     if line != line2:
  310.         raise RuntimeError, 'bad result after seek back'
  311.     f.seek(len(line2), 1)
  312.     list = f.readlines()
  313.     line = list[-1]
  314.     f.seek(f.tell() - len(line))
  315.     line2 = f.read()
  316.     if line != line2:
  317.         raise RuntimeError, 'bad result after seek back from EOF'
  318.     print 'Read', len(list), 'more lines'
  319.     print 'File length =', f.tell()
  320.     if f.tell() != length:
  321.         raise RuntimeError, 'bad length'
  322.     f.truncate(length / 2)
  323.     f.seek(0, 2)
  324.     print 'Truncated length =', f.tell()
  325.     if f.tell() != length / 2:
  326.         raise RuntimeError, 'truncate did not adjust length'
  327.     f.close()
  328.  
  329. if __name__ == '__main__':
  330.     test()
  331.